home *** CD-ROM | disk | FTP | other *** search
- package javax.help;
-
- import java.util.Enumeration;
- import java.util.NoSuchElementException;
- import java.util.Vector;
-
- class SearchTOCItem$1 implements Enumeration {
- int count;
- // $FF: synthetic field
- private final SearchTOCItem this$0;
-
- SearchTOCItem$1(SearchTOCItem var1) {
- this.this$0 = var1;
- this.count = 0;
- }
-
- public boolean hasMoreElements() {
- return this.count < SearchTOCItem.access$000(this.this$0).size();
- }
-
- public Object nextElement() {
- Vector var1 = SearchTOCItem.access$000(this.this$0);
- synchronized(var1) {
- if (this.count < SearchTOCItem.access$000(this.this$0).size()) {
- Double var2 = new Double(((SearchHit)SearchTOCItem.access$000(this.this$0).elementAt(this.count++)).getConfidence());
- return var2;
- }
- }
-
- throw new NoSuchElementException("Vector Enumeration");
- }
- }
-